program HelloWorld;

{$APPTYPE CONSOLE}

begin
	Writeln('Hello World');
	Readln;
end.
